home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / wsc4c21.zip / SIMPLE16._W_ < prev    next >
Text File  |  1997-05-22  |  708b  |  33 lines

  1. #
  2. # Watcom makefile for SELFTEST [Win16]
  3. # Requires WSC16.DLL & WSC16.LIB
  4. #
  5. # TO MAKE: wmake -f simple16._W_
  6. #
  7.  
  8. CCFLAGS = -c -oaxt -d2 -w4 -zW
  9.  
  10. OBJS = simple.obj about.obj line.obj paint.obj sioerror.obj
  11.  
  12. simple.exe: $(OBJS) simple.res simple.def wsc16.lib
  13.    wlink @simple16.lnk
  14.    wrc simple.res
  15.  
  16. simple.res: $(OBJS) simple.rc
  17.    wrc -r -bt=windows simple.rc
  18.  
  19. about.obj: about.c about.h
  20.    wcl $(CCFLAGS)  about.c
  21.  
  22. line.obj: line.c line.h wsc.h
  23.     wcl $(CCFLAGS)  line.c
  24.  
  25. paint.obj: paint.c paint.h wsc.h
  26.     wcl $(CCFLAGS)  paint.c
  27.  
  28. simple.obj: simple.c simple.h wsc.h
  29.    wcl $(CCFLAGS)  simple.c
  30.  
  31. sioerror.obj: sioerror.c sioerror.h wsc.h
  32.    wcl $(CCFLAGS)  sioerror.c
  33.